6657ee3deadcdf20ceab8414f18806113c503df4,cts-java/src/test/java/org/ga4gh/cts/api/g2p/GenotypePhenotypeSearchIT.java,GenotypePhenotypeSearchIT,testGenotypePhenotypeSearchFeaturePagingMore,#,207

Before Change


     */
    @Test
    public void testGenotypePhenotypeSearchFeaturePagingMore() throws AvroRemoteException {
        SearchGenotypePhenotypeRequest request = SearchGenotypePhenotypeRequest.newBuilder().build();
        request.setFeature(TestData.FEATURE_NAME);
        request.setPhenotypeAssociationSetId(TestData.PHENOTYPE_ASSOCIATIONSET_ID);
        SearchGenotypePhenotypeResponse response = client.genotypePhenotype.searchGenotypePhenotype(request);
        assertThat(response.getAssociations()).isNotNull() ;
        assertThat(response.getAssociations().size()).isGreaterThan(1);

After Change


    @Test
    public void testGenotypePhenotypeSearchFeaturePagingMore() throws AvroRemoteException {
        SearchGenotypePhenotypeRequest request = SearchGenotypePhenotypeRequest
                .newBuilder()
                .setPhenotypeAssociationSetId(TestData.PHENOTYPE_ASSOCIATIONSET_ID)
                .build();
        request.setFeature(TestData.FEATURE_NAME);
        SearchGenotypePhenotypeResponse response = client.genotypePhenotype.searchGenotypePhenotype(request);
        assertThat(response.getAssociations()).isNotNull();